home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
c
/
netlib
/
RCS
/
Net_HostToNetInt.c,v
< prev
next >
Wrap
Text File
|
1991-10-22
|
2KB
|
122 lines
head 1.2;
branch ;
access ;
symbols sprited:1.2.1;
locks ; strict;
comment @ * @;
1.2
date 89.01.27.16.36.42; author mendel; state Exp;
branches 1.2.1.1;
next 1.1;
1.1
date 88.11.21.09.10.09; author mendel; state Exp;
branches ;
next ;
1.2.1.1
date 91.10.22.14.52.36; author kupfer; state Exp;
branches ;
next ;
desc
@Formed from net.c of src/lib/old/net.c.
@
1.2
log
@Removed newline from rcsid string.
@
text
@/*
* Net_HostToNetInt.c --
*
* Convert an integer from host to network byte ordering.
*
* Copyright 1988 Regents of the University of California
* All rights reserved.
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*/
#ifndef lint
static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_HostToNetInt.c,v 1.1 88/11/21 09:10:09 mendel Exp $ SPRITE (Berkeley)";
#endif not lint
#include "machparam.h"
/*
*----------------------------------------------------------------------
*
* Net_HostToNetInt --
*
* Convert an integer in host byte order to an integer in
* net byte order.
*
* Results:
* The integer in net byte order.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
unsigned int
Net_HostToNetInt(longInt)
unsigned int longInt; /* 32bit integer in host byte order. */
{
#if BYTE_ORDER == LITTLE_ENDIAN
union {
unsigned int l;
unsigned char c[4];
} in, out;
in.l = longInt;
out.c[0] = in.c[3];
out.c[1] = in.c[2];
out.c[2] = in.c[1];
out.c[3] = in.c[0];
return (out.l);
#else
return(longInt);
#endif
}
@
1.2.1.1
log
@Initial branch for Sprite server.
@
text
@d18 1
a18 1
static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_HostToNetInt.c,v 1.2 89/01/27 16:36:42 mendel Exp $ SPRITE (Berkeley)";
@
1.1
log
@Initial revision
@
text
@d18 1
a18 2
static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE
(Berkeley)";
@